home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Development Tools & Languages / Dylan Related / Marlais / Marlais 0.5.9-portable sources / dylan_lexer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-15  |  257 b   |  20 lines  |  [TEXT/ttxt]

  1. /*
  2.    dylan_lexer.h
  3.  */
  4.  
  5. #ifndef DYLAN_LEXER_H
  6. #define DYLAN_LEXER_H
  7.  
  8. #include <stdio.h>
  9.  
  10. void init_reserved_word_symbols (void);
  11.  
  12. extern FILE *yyin;
  13. void yy_restart (FILE * fp);
  14. void yy_skip_ws (void);
  15. int charready (FILE * fp);
  16.  
  17. int yylex (void);
  18.  
  19. #endif
  20.